home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / smail-3.1.28 / src / bindsmtpth.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-11  |  793 b   |  27 lines

  1. /* @(#)src/bindsmtpth.h    1.4 7/11/92 11:48:01 */
  2.  
  3. /*****************************************************************************
  4.  * File Name:     bindsmtpth.h
  5.  * Description:     Transport hint structure specific to BIND/SMTP
  6.  * Author:     Simon Leinen (simon@liasun6)
  7.  * Date Created:  9-Jul-91
  8.  ****************************************************************************/
  9.  
  10. #ifndef _bindsmtp_h_
  11. #define _bindsmtp_h_
  12.  
  13. struct mx_transport_hint {
  14.     int preference;            /* preference of exchanger */
  15.     char *exchanger;            /* hostname of exchanger */
  16.     int implicit;            /* hint generated because no MX found */
  17.     struct ipaddr_hint *ipaddrs;    /* chain of IP addrs */
  18. };
  19.  
  20. struct ipaddr_hint {
  21.     struct ipaddr_hint *succ;
  22.     char *hostname;
  23.     struct in_addr addr;
  24. };
  25.  
  26. #endif /* not _bindsmtp_h_ */
  27.